#!/bin/bash

# startRouted
#
# Usage:
#    startRouted  
#
# Description:
#    This script starts the routed daemon for the console
#
# Module History
#    00  02/18/2004  T. Forties  - Initial Release

# Dump out the process id of the routed daemon that is currently running
echo pidofproc /usr/sbin/routed
pidofproc /usr/sbin/routed

# stop the routed daemon (no harm if it's not running)
echo "/etc/init.d/routed stop"
/etc/init.d/routed stop

# start the routed daemon
echo "/etc/init.d/routed start"
/etc/init.d/routed start

# Dump out the process id of the routed daemon that we just started
echo pidofproc /usr/sbin/routed
pidofproc /usr/sbin/routed
